翻訳と辞書
Words near each other
・ PICMG 2.5
・ PICMG 2.9
・ PicMonkey
・ PicNet
・ Picnic
・ Picnic (1955 film)
・ Picnic (1975 film)
・ Picnic (1996 film)
・ Picnic (album)
・ Picnic (chocolate bar)
・ Picnic (disambiguation)
・ Picnic (manga)
・ Picnic (play)
・ Picnic (TV series)
・ Pickle
Pickle (Python)
・ Pickle and Peanut
・ Pickle Barrel
・ Pickle Barrel House
・ Pickle Bridge Line
・ Pickle Family Circus
・ Pickle Gap
・ Pickle Lake
・ Pickle Lake Airport
・ Pickle Lake Water Aerodrome
・ Pickle meat
・ Pickle Productions
・ Pickle soup
・ Pickle Street, West Virginia
・ Pickle Wars


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Pickle (Python) : ウィキペディア英語版
Pickle (Python)

In the computer programming language Python, pickle is the standard mechanism for object serialization; ''pickling'' is the common term among Python programmers for serialization (''unpickling'' for ''deserializing''). Pickle uses a simple stack-based virtual machine that records the instructions used to reconstruct the object. This makes pickle vulnerable to security risks by malformed or maliciously constructed data, that may cause the deserializer to import arbitrary modules and instantiate any object.〔(13.1.1 Relationship to other Python modules )〕〔(Python library documentation )〕 Not all object types can be pickled automatically, especially ones that hold operating system resources like file handles, but users can register custom "reduction" and construction functions to support the pickling and unpickling of arbitrary types.
Pickle was originally implemented as the pure Python pickle module, but, in versions of Python prior to 3.0, the cPickle module (also a built-in) offers improved performance (up to 1000 times faster〔). The cPickle was adapted from the Unladen Swallow project. In Python 3, users should always import the standard version, which attempts to import the accelerated version and falls back to the pure Python version.〔("What's new in Python 3.0" )〕
== See also ==

* Marshalling

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Pickle (Python)」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.